.fb-about-hero {
    position: relative;
    width: 100%;
    height: 400px;
    /* Reduced Height */
    display: flex;
    align-items: center;
    background-image: url('../');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.fb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.fb-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    /* Desktop par text left mein rahega */
    display: flex;
    justify-content: flex-start;
}

.fb-hero-box {
    text-align: left;
    /* Text left alignment */
}

.fb-hero-title {
    font-size: 48px;
    /* Desktop font size reduced */
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.fb-hero-title span {
    color: #FFB400;
}

.fb-hero-line {
    width: 60px;
    height: 4px;
    background: #FFB400;
    margin: 10px 0 25px 0;
    /* Margin adjusted for left alignment */
    border-radius: 5px;
}

/* --- SMALLER GOL (ROUND) BUTTON --- */
.fb-hero-btn {
    display: inline-block;
    background-color: #FFB400;
    color: #000000;
    padding: 10px 30px;
    /* Smaller Padding */
    font-size: 15px;
    /* Smaller Font Size */
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.fb-hero-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* Tablet & Mobile (Iske niche center ho jayega) */
@media (max-width: 992px) {
    .fb-hero-container {
        justify-content: center;
        /* Center for Tablet/Mobile */
    }

    .fb-hero-box {
        text-align: center;
        /* Center text */
    }

    .fb-hero-line {
        margin: 10px auto 25px auto;
        /* Line centered */
    }

    .fb-hero-title {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .fb-about-hero {
        height: 300px;
    }

    .fb-hero-title {
        font-size: 25px;
        margin-top: 50px;
    }

    .fb-hero-btn {
        padding: 8px 25px;
        font-size: 14px;
    }
}
